home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1994 / MacHack 1994.toast / MacHack™94 / Miscellaneous / Randy Thelen / ThreadedSort / AppSpecific / MenuBar.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-26  |  605 b   |  40 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        MenuBar.h
  3.  
  4.     Contains:    Sample menu IDs and item numbers
  5.                 
  6.     Written by: Dave Falkenburg
  7.     
  8.     Copyright:    © 1993 by Dave Falkenburg, all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.      
  12.          <1>      7/5/93    DRF        first checked in
  13.  */
  14.  
  15. #ifndef        _MENUBAR_
  16. #define        _MENUBAR_
  17.  
  18. #define        rMenuBar    128
  19.  
  20. #define        mApple        128
  21. #define        iAbout        1
  22.  
  23. #define        mFile        129
  24. #define        iNew        1
  25. #define        iOpen        2
  26. #define        iClose        3
  27. #define        iQuit        11
  28.  
  29. #define        mEdit        130
  30. #define        iUndo        1
  31. #define        iCut        3
  32. #define        iCopy        4
  33. #define        iPaste        5
  34. #define        iClear        6
  35.  
  36. #define        mTest        131
  37. #define        iNewDialog    1
  38.  
  39. #endif
  40.